Socket
Socket
Sign inDemoInstall

@types/invariant

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/invariant

TypeScript definitions for invariant


Version published
Maintainers
1
Created

What is @types/invariant?

The @types/invariant package provides TypeScript type definitions for the invariant npm package. Invariant is a utility that can be used to assert that a certain condition is true. If the condition is false, it will throw an error. The @types/invariant package doesn't contain functionality by itself but adds type support for TypeScript users using the invariant package.

What are @types/invariant's main functionalities?

Type Definitions for invariant

This code sample shows how you can use the invariant function with TypeScript type definitions provided by @types/invariant. It asserts that the divisor is not zero before performing the division.

import invariant from 'invariant';

function divide(dividend: number, divisor: number): number {
  invariant(divisor !== 0, 'Division by zero.');
  return dividend / divisor;
}

divide(10, 2); // works fine
divide(10, 0); // throws error with message 'Division by zero.'

Other packages similar to @types/invariant

FAQs

Package last updated on 07 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc